Autogenerated HTML docs for v1.4.4.1
diff --git a/git-rev-list.html b/git-rev-list.html index 1bd3ba1..b10c371 100644 --- a/git-rev-list.html +++ b/git-rev-list.html
@@ -339,10 +339,130 @@ </dt> <dd> <p> - Pretty print the contents of the commit logs in a given format, - where <em><format></em> can be one of <em>raw</em>, <em>medium</em>, <em>short</em>, <em>full</em>, - and <em>oneline</em>. When left out the format default to <em>medium</em>. + Pretty-prints the details of a commit. <tt>--pretty</tt> + without an explicit <tt>=<format></tt> defaults to <em>medium</em>. + If the commit is a merge, and if the pretty-format + is not <em>oneline</em>, <em>email</em> or <em>raw</em>, an additional line is + inserted before the <em>Author:</em> line. This line begins with + "Merge: " and the sha1s of ancestral commits are printed, + separated by spaces. Note that the listed commits may not + necessarily be the list of the <strong>direct</strong> parent commits if you + have limited your view of history: for example, if you are + only interested in changes related to a certain directory or + file. Here are some additional details for each format: </p> +<ul> +<li> +<p> +<em>oneline</em> +</p> +<div class="literalblock"> +<div class="content"> +<pre><tt><sha1> <title line></tt></pre> +</div></div> +<p>This is designed to be as compact as possible.</p> +</li> +<li> +<p> +<em>short</em> +</p> +<div class="literalblock"> +<div class="content"> +<pre><tt>commit <sha1> +Author: <author></tt></pre> +</div></div> +<div class="literalblock"> +<div class="content"> +<pre><tt><title line></tt></pre> +</div></div> +</li> +<li> +<p> +<em>medium</em> +</p> +<div class="literalblock"> +<div class="content"> +<pre><tt>commit <sha1> +Author: <author> +Date: <date></tt></pre> +</div></div> +<div class="literalblock"> +<div class="content"> +<pre><tt><title line></tt></pre> +</div></div> +<div class="literalblock"> +<div class="content"> +<pre><tt><full commit message></tt></pre> +</div></div> +</li> +<li> +<p> +<em>full</em> +</p> +<div class="literalblock"> +<div class="content"> +<pre><tt>commit <sha1> +Author: <author> +Commit: <committer></tt></pre> +</div></div> +<div class="literalblock"> +<div class="content"> +<pre><tt><title line></tt></pre> +</div></div> +<div class="literalblock"> +<div class="content"> +<pre><tt><full commit message></tt></pre> +</div></div> +</li> +<li> +<p> +<em>fuller</em> +</p> +<div class="literalblock"> +<div class="content"> +<pre><tt>commit <sha1> +Author: <author> +AuthorDate: <date & time> +Commit: <committer> +CommitDate: <date & time></tt></pre> +</div></div> +<div class="literalblock"> +<div class="content"> +<pre><tt><title line></tt></pre> +</div></div> +<div class="literalblock"> +<div class="content"> +<pre><tt><full commit message></tt></pre> +</div></div> +</li> +<li> +<p> +<em>email</em> +</p> +<div class="literalblock"> +<div class="content"> +<pre><tt>From <sha1> <date> +From: <author> +Date: <date & time> +Subject: [PATCH] <title line></tt></pre> +</div></div> +<div class="literalblock"> +<div class="content"> +<pre><tt>full commit message></tt></pre> +</div></div> +</li> +<li> +<p> +<em>raw</em> +</p> +<p>The <em>raw</em> format shows the entire commit exactly as +stored in the commit object. Notably, the SHA1s are +displayed in full, regardless of whether --abbrev or +--no-abbrev are used, and <em>parents</em> information show the +true parent commits, without taking grafts nor history +simplification into account.</p> +</li> +</ul> </dd> <dt> --relative-date @@ -645,7 +765,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 03-Oct-2006 08:41:25 UTC +Last updated 23-Nov-2006 02:47:21 UTC </div> </div> </body>